forked from Acellera/moleculekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (31 loc) · 1.21 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
import setuptools
import unittest
def my_test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover(start_dir='moleculekit', pattern='*.py')
return test_suite
with open('requirements.txt') as f:
requirements = f.read().splitlines()
if __name__ == '__main__':
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='moleculekit',
version='MOLECULEKIT_VERSION_PLACEHOLDER',
author='Acellera',
description='A molecule reading/writing and manipulation package.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/acellera/moleculekit/',
classifiers=[
'Programming Language :: Python :: PYTHON_VERSION_PLACEHOLDER',
'Operating System :: POSIX :: Linux',
],
packages=setuptools.find_packages(include=['moleculekit*'], exclude=['test-data', '*test*', ]),
package_data={
'moleculekit': ['lib/*/*', 'vmd_wrapper', 'logging.ini'],
},
test_suite='setup.my_test_suite',
install_requires=requirements
)