-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (25 loc) · 758 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python3
import os
import sys
from setuptools import find_packages, setup
import __doc__
def get_version():
return __doc__.__version__
try:
version = get_version()
except ImportError:
sys.path.append(os.path.join(os.path.dirname('borisjohnsonuk')))
version = get_version()
install_requires = [x for x in str(open('requirements.txt', 'r').read()).split("\n")]
setup(
name='borisjohnsonuk',
version=version,
url='https://github.com/codefather-labs/borisjohnsonuk',
author=__doc__.__author__,
description=__doc__.description,
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
zip_safe=False,
license='GNU General Public License v3.0 License',
)