-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
48 lines (44 loc) · 1.44 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
#!/usr/bin/env python
from setuptools import setup
with open('pythia/version.py') as version_file:
exec(version_file.read())
long_description_lines = []
with open('README.rst', 'r') as readme:
for line in readme:
if line.startswith('Contents'):
break
long_description_lines.append(line)
long_description = ''.join(long_description_lines)
setup(name='pythia-learn',
author='Matthew Spellings',
author_email='mspells@umich.edu',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics'
],
description='Machine learning fingerprints for particle environments',
extras_require={
'learned': ['tensorflow', 'fsph >= 0.2'],
},
install_requires=[
'freud-analysis>=2.2.0',
'numpy',
'scipy',
],
license='BSD',
long_description=long_description,
package_dir={'pythia': 'pythia'},
packages=[
'pythia',
'pythia.learned',
],
project_urls={
'Documentation': 'https://pythia-learn.readthedocs.io/',
'Source': 'https://github.com/glotzerlab/pythia'
},
python_requires='>=3',
version=__version__ # noqa F821
)