forked from EthanChappel/Alpyca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 836 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
"""Setup Alpyca for distribution."""
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="Alpyca",
description="Python interface for ASCOM Alpaca.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Ethan Chappel",
url="https://github.com/EthanChappel/Alpyca",
version="1.0.0b1",
license="LICENSE.txt",
py_modules=["alpaca"],
install_requires=["requests", "python-dateutil"],
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: Apache Software License",
],
)