-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.23 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
from setuptools import setup, find_packages
import os
with open("README.md", 'r') as f:
long_description = f.read()
fn = os.path.join('carbonpy', 'version.py')
with open(fn) as fh:
code = compile(fh.read(), fn, 'exec')
exec(code)
setup(
name='carbonpy',
version=__version__,
author='Harshil Mehta',
author_email='[email protected]',
description="A Python package which gives IUPAC names of chemical compounds, classifies them and more.",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/harshil21/carbonpy',
project_urls={
'Issue Tracker': 'https://github.com/harshil21/carbonpy/issues',
'Telegram group': 'https://t.me/carbonpy'
},
packages=find_packages(exclude=['tests*']),
classifiers=['Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Chemistry'],
python_requires='>=3.6')