forked from glotzerlab/signac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (47 loc) · 1.6 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import os
from setuptools import setup, find_packages
description = "Simple file data management database."
try:
this_path = os.path.dirname(os.path.abspath(__file__))
fn_readme = os.path.join(this_path, 'README.md')
with open(fn_readme) as fh:
long_description = fh.read()
except (IOError, OSError):
long_description = description
setup(
name='signac',
version='1.0.0',
packages=find_packages(),
zip_safe=True,
author='Carl Simon Adorf',
author_email='[email protected]',
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
keywords='simulation database index collaboration workflow',
url="https://signac.io",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4',
extras_require={
'db': ['pymongo>=3.0'],
'mpi': ['mpi4py'],
},
entry_points={
'console_scripts': [
'signac = signac.__main__:main',
],
},
)