forked from mdw771/adorym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1001 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
import setuptools
setuptools.setup(
name='adorym',
version='1.0.1',
author='Ming Du',
description='Automatic differentiation-based object retrieval with dynamic modeling.',
packages=setuptools.find_packages(exclude=['docs']),
include_package_data=True,
url='http://github.com/mdw771/adorym.git',
keywords=['adorym'],
license='BSD-3',
platforms='Any',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Developers'
]
)