-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
34 lines (31 loc) · 972 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
import setuptools
import glob
import os
with open("README.rst", "r") as fh:
long_description = fh.read()
datafiles = []
setuptools.setup(
name="pyavtools",
version="0.1.0",
author="Garrett Herschleb",
author_email="[email protected]",
description="pyAvTools",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/makerplane/pyAvDb",
packages=setuptools.find_packages(exclude=["tests.*", "tests"]),
install_requires = ['pyyaml','pyGeoMag'],
extras_require = {
'build': ['build==0.10.0']
},
#data_files = datafiles,
entry_points = {
'console_scripts': ['makecifpindex=pyavtools.utils.MakeCIFPIndex:main'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
],
test_suite = 'tests',
)