forked from gigjozsa/TiRiFiG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.45 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
#!/usr/bin/env python
from setuptools import setup, find_packages
def readme():
with open("README.rst") as f:
return f.read()
setup(name="TiRiFiG",
version="1.0.1",
description="A graphical user interface that allows users of TiRiFiC to modify tilted-ring parameters interactively.",
long_description=readme(),
author="Samuel Twum",
author_email="[email protected]",
packages=find_packages(),
url='https://github.com/gigjozsa/samtirifik',
download_url='https://pypi.python.org/pypi/samtirifik',
# home_page='http://under-construction',
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Topic :: Scientific/Engineering :: Visualization",
],
platforms=["OS Independent"],
install_requires=[
# "PyQt>=4",
"numpy",
"matplotlib"],
zip_safe=False,
include_package_data=True,
package_data={'TiRiFiG': ['utilities/example/n5204_lo.n5204_lo.fits',
'utilities/example/n5204_lo_out_00.def',
'utilities/icons/*.png']},
entry_points={
'console_scripts': [
'TiRiFiG = TiRiFiG.TiRiFiG_launcher:main'
]}
)