-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
30 lines (25 loc) · 901 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
from setuptools import setup
from setuptools.command.build_py import build_py
from subprocess import call
from os import path
class BuildCommand(build_py):
def run(self):
build_py.run(self)
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="ramda",
version="0.7.6",
description="Python clone of ramda.js (ramdajs.com)",
url="http://github.com/slavaGanzin/ramda.py",
author="Slava Ganzin",
author_email="[email protected]",
packages=["ramda", "ramda.private", "ramda.private.curry_spec"],
install_requires=["toolz"],
tests_require=["nose2", "coverage", "mock", "six"],
cmdclass={"build_py": BuildCommand},
long_description=long_description,
long_description_content_type="text/markdown",
zip_safe=False,
)