forked from oda-hub/aqsmodel-converters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.29 KB
/
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
36
37
from setuptools import find_packages, setup
install_requires = ["calamus>=0.3.8", "gorilla", "numpy"]
packages = find_packages()
version_file = open("VERSION")
setup(
name="aqsconverters",
description="AQSchema Converter",
keywords="AQSchema",
license="BSD 3.0",
author="Volodymyr Savchenko, Gabriele Barni",
author_email="[email protected]",
install_requires=install_requires,
packages=packages,
tests_require=["pytest>=4.0.0"],
zip_safe=False,
include_package_data=True,
platforms="any",
version=version_file.read().strip(),
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta",
],
)