-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (27 loc) · 895 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
# import os
from setuptools import setup
with open('requirements.txt') as inn:
requirements = inn.read().splitlines()
with open("README.rst", "r") as inn:
long_description = inn.read().strip()
setup(
name="illpy_lib",
version="0.0.1",
author="Luke Zoltan Kelley",
author_email="[email protected]",
# description=("General functions for dealing with the illustris simulations."),
license="MIT",
keywords="",
# url="https://bitbucket.org/lzkelley/illpy_lib",
packages=['illpy_lib'],
include_package_data=True,
install_requires=requirements,
long_description=long_description,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
]
)