-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.25 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
#!/usr/bin/env python
import io
import os
import re
from setuptools import setup, find_packages
version_match = re.search(
r'__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
io.open("pycule/__init__.py", encoding="utf_8_sig").read(),
)
if version_match is None:
raise ValueError("Version could not be determined")
__version__ = version_match.group(1)
if os.path.exists("README.md"):
long_description = open("README.md").read()
else:
long_description = """Python wrapper for the Ultimate MCule API"""
setup(
name="PyCule",
version=__version__,
author="Warren Thompson",
author_email="[email protected]",
py_modules=["PyCule"],
description="Python wrapper for the MCule Ultimate API",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
install_requires=[
"requests>=2.24.0",
"ratelimit>=2.2.1",
],
packages=find_packages(),
url="https://github.com/xchem/pycule.git",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)