-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (26 loc) · 848 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
26
27
28
29
30
31
32
33
#!/usr/bin/env python
import os
import sys
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
from setuptools import setup, Extension
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='noonlight',
version='0.1.1',
packages=['noonlight'],
url='https://github.com/konnected-io/noonlight-py',
license="MIT License",
description='A Python library for interacting with the Noonlight API',
long_description=long_description,
long_description_content_type="text/markdown",
author='Nate Clark, Nick Gordon, Konnected Inc',
author_email='[email protected]',
install_requires=['aiohttp'],
project_urls={
'Homepage': 'https://github.com/konnected-io/noonlight-py',
'API Documentation': 'https://docs.noonlight.com'
}
)