Skip to content

Commit

Permalink
Added Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Vince Forgione committed Oct 22, 2018
1 parent 61fc7c4 commit 2558b13
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import codecs
import os
from setuptools import find_packages, setup


# semantic versioning
VERSION = '0.1.0'


here = os.path.abspath(os.path.dirname(__file__))

with codecs.open(os.path.join(here, 'README.md'), encoding='utf8') as fh:
long_description = fh.read()


setup(
name='aot-client',
version=VERSION,
description='The Official Python Client of the Array of Things API',
long_description=long_description,
url='https://github.com/UrbanCCD-UChicago/aot-client-py',
author='Vince Forgione',
author_email='vforgione@uchicago.edu',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(where='.', exclude=['tests', 'docs'])
)

0 comments on commit 2558b13

Please sign in to comment.