-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (57 loc) · 1.61 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
60
61
62
63
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# package setup
#
# ------------------------------------------------
# imports
# -------
import os
# config
# ------
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
# requirements
# ------------
with open('requirements.txt') as f:
REQUIREMENTS = f.read().strip().split('\n')
TEST_REQUIREMENTS = [
'pytest',
'pytest-runner'
]
if os.path.exists('README.md'):
long_description = open('README.md').read()
else:
long_description = 'MackerellNAMD - Our groups analysis toolkit for NAMD simulations'
# exec
# ----
setup(
name="pynamd",
version="0.0.1",
packages=['pynamd'],
license='GPL',
author="Prabin Baral, Suliman Sharif",
author_email="sharifsuliman1@gmail.com",
url="https://www.github.com/MacKerellGroup/",
install_requires=REQUIREMENTS,
long_description=long_description,
long_description_content_type='text/markdown',
zip_safe=False,
keywords='namd python simulations',
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: English',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
test_suite='tests',
tests_require=TEST_REQUIREMENTS,
)