forked from nicolaschotard/stackyter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (29 loc) · 1.05 KB
/
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
34
35
36
37
#!/usr/bin/env python
"""Setup script."""
from os import path
from setuptools import setup
VERSION = "0.21"
# Long description loaded from the README
with open(path.join(path.abspath(path.dirname(__file__)), "README.rst")) as readme:
long_description = readme.read()
# Package name
NAME = 'stackyter'
# Scripts (in scripts/)
SCRIPTS = ["stackyter.py"]
CLASSIFIERS = ['Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy']
setup(name=NAME,
version=VERSION,
description=("Local display of a jupyter notebook running at CC-IN2P3"),
license="MIT",
classifiers=CLASSIFIERS,
url="https://github.com/nicolaschotard/stackyter",
author="Nicolas Chotard",
author_email="[email protected]",
scripts=SCRIPTS,
long_description=long_description
)