-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 739 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import os
from setuptools import find_packages, setup
requirements = [line.strip() for line in open('requirements.txt', 'r').readlines()]
version = '0.18'
if os.path.isfile('VERSION'):
version = open('VERSION', 'r').readline().strip() or version
setup(
name = 'botbond',
version = version,
description = 'botbond',
author = 'Adrien Delle Cave',
author_email = 'pypi@doowan.net',
license = 'License GPL-2',
url = 'https://github.com/decryptus/botbond',
scripts = ['bin/botbond'],
packages = find_packages(),
install_requires = requirements
)