-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (42 loc) · 1.49 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
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
try:
import wx
except ImportError:
print "wxPython is not installed. For instructions, please visit http://wiki.wxpython.org/How%20to%20install%20wxPython"
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='chembl_clippy',
version='0.1.6',
scripts=['chembl_clippy/clippy_all.py'],
author='George Papadatos',
author_email='georgep@ebi.ac.uk',
description='A cross-platform chemical structure rendering desktop app.',
url='https://www.ebi.ac.uk/chembl/',
license='MIT',
packages=['chembl_clippy'],
long_description=open('README.md').read(),
install_requires=['requests',],
package_data={
'chembl_clippy': ['art/*'],
},
include_package_data=False,
classifiers=['Development Status :: 2 - Pre-Alpha',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Chemistry'],
zip_safe=False,
)