forked from luisnaranjo733/periodic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.05 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
#from distutils.core import setup
import os
def read(fname): # TODO: Implement this
fpath = os.path.join(
os.path.abspath(os.path.dirname(__file__)), fname)
with open(fpath, 'r') as fhandle:
return fhandle.read()
setup(
name = "periodic",
version = '2.1.1',
author = 'Jose Luis Naranjo Gomez',
author_email = 'luisnaranjo733@hotmail.com',
description = ("A periodic table API."),
license = "GNU GPL",
keywords = "chem chemistry periodic table finder elements",
url = "https://github.com/doubledubba/periodic",
packages = ['periodic'],
#package_data = {'periodic': ['table.db']}
include_package_data = True,
entry_points = {
'console_scripts': ['periodic = periodic.table:interactive_shell']
},
install_requires = ['SQLAlchemy==0.7.7'],
long_description=read('README.rst'),
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Topic :: Utilities",
],
)