-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 914 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'mnowotka'
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='chembl_ikey',
version='0.0.1',
author='Michal Nowotka',
author_email='mnowotka@ebi.ac.uk',
description='Pure python implementation of InChiKey generation algorithm based on the original C code',
url='https://www.ebi.ac.uk/chembl/',
license='CC BY-SA 3.0',
packages=['chembl_ikey'],
long_description=open('README.rst').read(),
include_package_data=False,
classifiers=['Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: Creative Commons :: Attribution-ShareAlike 3.0 Unported',
'Topic :: Scientific/Engineering :: Chemistry'],
zip_safe=False,
)