forked from CARTAvis/carta-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 888 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 888 Bytes
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
import setuptools
with open("README.md") as f:
long_description = f.read()
with open("VERSION.txt") as f:
version = f.read()
setuptools.setup(
name="carta",
version=version,
author="Adrianna Pińska",
author_email="adrianna.pinska@gmail.com",
description="CARTA scripting wrapper written in Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CARTAvis/carta-python",
packages=["carta"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
],
python_requires='>=3.6',
install_requires=[
"requests",
"simplejson",
],
setup_requires=[
"wheel",
],
)