forked from jkitchin/pycse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (23 loc) · 933 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
# Copyright 2015, John Kitchin
# (see accompanying license files for details).
from setuptools import setup
setup(name='pycse',
version='2.0',
description='python computations in science and engineering',
url='http://github.com/jkitchin/pycse',
maintainer='John Kitchin',
maintainer_email='[email protected]',
license='GPL',
platforms=['linux'],
packages=['pycse'],
setup_requires=['nose>=1.0'],
data_files=['requirements.txt', 'LICENSE'],
long_description='''\
python computations in science and engineering
===============================================
This package provides functions that are useful in science and engineering
computations.
See http://kitchingroup.cheme.cmu.edu/pycse for documentation.
''')
# python setup.py register to setup user
# to push to pypi - (shell-command "python setup.py sdist upload")