-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
59 lines (49 loc) · 2.02 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
56
57
58
59
#! /usr/bin/env python
# System imports
from setuptools import setup, Extension, find_packages
from os import path
import io
packages = find_packages()
# versioning
MAJOR = 1
MINOR = 5
MICRO = 2
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
info = {
'name': 'pylj',
'description': 'Simple teaching tool for classical MD simulation',
'author': 'Andrew R. McCluskey',
'author_email': '[email protected]',
'packages': packages,
'include_package_data': True,
'setup_requires': ['jupyter', 'numpy', 'matplotlib', 'cython'],
'install_requires': ['jupyter', 'numpy', 'matplotlib', 'cython'],
'version': VERSION,
'license': 'MIT',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'classifiers': ['Development Status :: 5 - Production/Stable',
'Framework :: Jupyter',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics']
}
####################################################################
# this is where setup starts
####################################################################
def setup_package():
setup(**info)
if __name__ == '__main__':
setup_package()