-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
54 lines (46 loc) · 1.33 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
import os
import re
from setuptools import setup, find_packages
def get_long_description():
with open('README.md', 'rb') as f:
desc = f.read().decode('utf-8')
return desc
def get_version(package):
"""
Return package version as listed in `__version__` in `__init__.py`.
"""
path = os.path.join(os.path.dirname(__file__), package, '__init__.py')
with open(path, 'rb') as f:
init_py = f.read().decode('utf-8')
return re.search("__version__ = ['\"]([^'\"]+)['\"]", init_py).group(1)
install_requires = [
'cffi>=1.10.0',
'six>=1.9.0',
'packaging>=23.0'
]
setup(
name='rchitect',
author='Randy Lai',
author_email="[email protected]",
version=get_version("rchitect"),
url='https://github.com/randy3k/rchitect',
description='Mapping R API to Python',
long_description=get_long_description(),
long_description_content_type="text/markdown",
packages=find_packages('.', exclude=["tests"]),
package_data={'rchitect': ['reticulate/*.R', 'src/*']},
cffi_modules=["build.py:ffibuilder"],
python_requires='>=3.7',
install_requires=install_requires,
setup_requires=[
'cffi>=1.10.0',
"pytest-runner"
],
extras_require={
"test": [
"pytest",
"pytest-mock",
"pytest-cov"
]
}
)