-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 746 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name="pydatomic",
version="0.1.0",
author="Graham Stratton",
author_email="gns24@beasts.org",
description="Datomic REST API client",
long_description=open('README.rst').read(),
url="https://github.com/gns24/pydatomic",
install_requires=['requests'],
license='mit',
packages=['pydatomic'],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development',
'Programming Language :: Python',
'Operating System :: OS Independent']
)