-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
69 lines (58 loc) · 1.75 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
64
65
66
67
68
69
#!/usr/bin/env python
import os
import sys
from setuptools.command.test import test as TestCommand
from setuptools import find_packages
import pytopol
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
#import here, cause outside the
#eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
#readme = open('README.md').read()
doclink = """
Documentation
=============
Plese see http://github.com/resal81/pytopol"""
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
name='pytopol',
version=pytopol.__version__,
description='"Library for converting molecular topologies"',
long_description= doclink + '\n\n' + history,
author='Reza Salari',
author_email='[email protected]',
url='https://github.com/resal81/pytopol',
packages=find_packages(),
package_dir={'pytopol': 'pytopol'},
include_package_data=True,
install_requires=[
],
license='GPLv3',
zip_safe=False,
keywords='pytopol',
scripts=['scripts/psf2top.py'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
tests_require=['pytest>=2.3.5'],
cmdclass={'test': PyTest},
)