forked from sunng87/pyclj
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (22 loc) · 773 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
long_desc=open('README.rst','r').read()
setup(name="pyclj",
version="0.2.2",
author="Sun Ning",
author_email="[email protected]",
description="clojure literal reader and writer for python",
long_description=long_desc,
url="http://github.com/sunng87/pyclj",
install_requires=["pyRFC3339"],
license='mit',
py_modules=['clj'],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development',
'Programming Language :: Python',
'Operating System :: OS Independent']
)