-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 899 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 899 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
34
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
setup(
name="flatstar",
version="0.2.1a",
author="Leonardo dos Santos",
author_email="Leonardo.dosSantos@unige.ch",
packages=["flatstar"],
url="https://github.com/ladsantos/flatstar",
license="MIT",
description="Draw limb-darkened stars!",
install_requires=[line.strip() for line in
open('requirements.txt', 'r').readlines()],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
)