forked from kachayev/fn.py
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
74 lines (65 loc) · 2.06 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
import os
import sys
from pkg_resources import get_distribution, DistributionNotFound
try:
get_distribution('fn')
sys.stdout.write("""
{delimiter}
INSTALLATION ABORTED
The module "fn" was found on this system. Unfortunately
"fn.py" and "fn" cannot work together because they use the
same package name, i.e. fn. The "fn" module is no longer
maintained by the original author and "fn.py" is actually
a maintained fork of that project.
To complete this install, please uninstall "fn" (e.g.
pip uninstall fn) and rerun the installation of "fn.py".
{delimiter}
""".format(delimiter='=' * 60))
sys.exit(0)
except DistributionNotFound:
pass
import fn
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()
short = '''
Implementation of missing features to enjoy functional programming in Python
'''
setup(
name='fn.py',
version=fn.__version__,
description=short,
long_description=(
open('README.rst').read() +
'\n\n' +
open('CHANGELOG.rst').read()
),
author='fnpy team',
author_email='[email protected]',
url='https://github.com/fnpy/fn.py',
packages=['fn', 'fn.immutable'],
package_data={'': ['LICENSE', 'README.rst', 'CHANGELOG.rst']},
include_package_data=True,
install_requires=[],
license=open('LICENSE').read(),
zip_safe=False,
keywords=['functional', 'fp', 'utility'],
classifiers=(
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
),
)