forked from fcurella/python-package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
28 lines (24 loc) · 799 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "mathchem",
version = "1.1.3",
description = "",
long_description = read('README.md'),
url = 'https://github.com/hamster3d/mathchem-package',
license = 'MIT',
author = 'Alexander Vasilyev',
author_email = '[email protected]',
packages = find_packages(exclude=['tests']),
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'
],
install_requires = ['numpy'],
)