-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
60 lines (52 loc) · 1.98 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import sys
import os.path as op
#from distutils.core import setup
from setuptools import setup, find_packages
NAME = 'pyparty'
# Python >= 2.7
# -------
#user_py = sys.version_info
#if user_py < (2, 7):
# raise SystemExit('%s requires python 2.7 or higher (%s found).' % \
# (NAME, '.'.join(str(x) for x in user_py[0:3])))
# For now, most of these are in here for testing. Dependency version
#requirements can probably be relaxed, especially chaco.
setup(
name = NAME,
version = '0.3.1',
author = 'Adam Hughes',
maintainer = 'Adam Hughes',
maintainer_email = '[email protected]',
author_email = '[email protected]',
packages = find_packages(),
# include .tex and .ipynb files
package_data={
'pyparty.examples.Notebooks':['*.ipynb'],
'pyparty.bundled':['*.css'],
'pyparty.data':['*'],
},
entry_points = {'console_scripts':
[
'objecthunt = pyparty.scripts.objectmodeling.objecthunt:main'
] },
url = 'http://pypi.python.org/pypi/pyparty/',
download_url = 'https://github.com/hugadams/pyparty',
license = 'LICENSE.txt',
description = 'Tools for patterning 2d-shapes on ndarrays',
# REMOVED DUE TO ENCODING ISSUES
# long_description = open(op.join(sys.path[0], 'README.txt'), 'rb').read(),
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Physics',
],
)