-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (21 loc) · 876 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
import os
from setuptools import setup
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
v = '0.1.0beta'
setup(name = "PySter",
version = v,
packages = ['pyster'],
install_requires=['rrsm'],
description = 'Python *anywhere',
long_description=(read('README.md')),
author = "Jeffrey McLarty",
author_email = "[email protected]",
url = 'https://github.com/jnmclarty/pyster',
download_url = 'https://github.com/jnmclarty/pyster/tarball/' + v,
keywords = ["pyster"],
classifiers = ['Development Status :: 4 - Beta',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Programming Language :: Python :: 2.7'])