-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (23 loc) · 808 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
34
from setuptools import setup, find_packages
from glob import glob
with open('requirements.txt', 'r') as f:
install_reqs = [
s for s in [
line.strip(' \n') for line in f
] if not s.startswith('#') and s != ''
]
setup(name='nuclear-python',
version='0.16.1',
url='https://github.com/nuclearboy95/nuclear-python',
license='MIT',
author='Jihun Yi',
scripts=glob('bash_scripts/*'),
author_email='t080205@gmail.com',
description='Python helpers',
packages=find_packages(exclude=['tests', 'dist', 'build']),
include_package_data=True,
long_description=open('README.md').read(),
zip_safe=False,
setup_requires=['nose>=1.0'],
install_requires=install_reqs,
test_suite='nose.collector')