-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·34 lines (29 loc) · 1013 Bytes
/
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
VERSION = "1.2"
copy_args = sys.argv[1:]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='modelcif',
version=VERSION,
script_args=copy_args,
description='Package for handling ModelCIF mmCIF and BinaryCIF files',
long_description=long_description,
long_description_content_type="text/markdown",
author='Ben Webb',
author_email='[email protected]',
url='https://github.com/ihmwg/python-modelcif',
packages=['modelcif', 'modelcif.util'],
install_requires=['ihm>=1.7'],
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
])