forked from bambinos/formulae
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (40 loc) · 1.41 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
import codecs
import os
import sys
from setuptools import find_packages, setup
PROJECT_ROOT = os.path.dirname(os.path.realpath(__file__))
README_FILE = os.path.join(PROJECT_ROOT, "README.md")
VERSION_FILE = os.path.join(PROJECT_ROOT, "formulae", "version.py")
REQUIREMENTS_FILE = os.path.join(PROJECT_ROOT, "requirements.txt")
def get_long_description():
with codecs.open(README_FILE, "rt") as buff:
return buff.read()
def get_requirements():
with codecs.open(REQUIREMENTS_FILE) as buff:
return buff.read().splitlines()
with open(VERSION_FILE) as buff:
exec(buff.read())
if len(set(("test", "easy_install")).intersection(sys.argv)) > 0:
import setuptools
tests_require = []
extra_setuptools_args = {}
if "setuptools" in sys.modules:
tests_require.append("nose")
extra_setuptools_args = dict(
test_suite="nose.collector", extras_require=dict(test="nose>=0.10.1")
)
setup(
name="formulae",
version=__version__,
description="Formulas for mixed-effects models in Python",
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/bambinos/formulae",
install_requires=get_requirements(),
maintainer="Tomas Capretto",
maintainer_email="[email protected]",
packages=find_packages(exclude=["tests", "test_*"]),
tests_require=tests_require,
license="MIT",
**extra_setuptools_args,
)