-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (28 loc) · 965 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (28 loc) · 965 Bytes
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
VERSION = "1.6"
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='benmwebb@gmail.com',
url='https://github.com/ihmwg/python-modelcif',
packages=['modelcif', 'modelcif.util'],
install_requires=['ihm>=2.6'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
])