forked from dbrattli/OSlash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.28 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
38
39
# coding=utf-8
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='OSlash',
version='0.5.1',
description="Ø for Python 3.5",
long_description=("is a functional library for playing with "
"Functors, Applicatives, and Monads in Python."),
author='Dag Brattli',
author_email='[email protected]',
license='Apache License',
url='https://github.com/dbrattli/oslash',
download_url='https://github.com/dbrattli/oslash',
zip_safe=True,
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# 'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
packages=['oslash', 'oslash.util', 'oslash.abc'],
package_dir={'oslash': 'oslash'}
)