-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.02 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.02 KB
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
from setuptools import setup, Extension, find_packages
setup(
name = 'dmagic',
author = 'Francesco De Carlo',
author_email = 'decarlo@anl.gov',
description = 'Data Management Magic Tools.',
packages = find_packages(),
package_data={'dmagic': ['*.txt']},
install_requires=['pyyaml'],
entry_points={'console_scripts':['dmagic = dmagic.__main__:main'],},
version = open('VERSION').read().strip(),
zip_safe = False,
url='http://dmagic.readthedocs.org',
download_url='https://github.com/xray-imaging/DMagic.git',
license='BSD-3',
platforms='Any',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)