-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (39 loc) · 1.15 KB
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='r2py',
version='0.3.0',
author="Ricardo E. Gonzalez",
author_email="ricardog@itinerisinc.com",
description="Compile mixed-effects R models to python modules",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires='>=3.7',
url="https://github.com/ricardog/r2py",
project_urls={
"Bug Tracker": "https://github.com/ricardog/r2py/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=find_packages(where='src'),
include_package_data=True,
install_requires=[
'Click',
'inflection',
'numba',
'pandas',
'pyparsing',
'rpy2',
'setuptools',
],
extras_require={"dev": ["black", "flake8", "pylint", "pytest"]},
entry_points='''
[console_scripts]
r2py=r2py.scripts.r2py:main
''',
)