-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 903 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
35
from setuptools import setup, find_packages
from distutils.util import convert_path
ver_path = convert_path('cw/version.py')
with open(ver_path) as ver_file:
ns = {}
exec(ver_file.read(), ns)
version = ns['version']
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='cw',
version=ns['version'],
description="Collection of python libraries I've written throughout the years.",
author='Aaron de Windt',
author_email='',
url='https://github.com/aarondewindt/cw',
install_requires=required,
packages=find_packages('.', exclude=["test"]),
package_data={
"cw.aero_file": ["*.yaml"],
},
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Development Status :: 2 - Pre-Alpha'],
entry_points={
'console_scripts': [
'cw = cw.__main__:main'
]
}
)