-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 1.17 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
from setuptools import setup, find_packages, Extension
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
author="Guilherme Caminha",
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
description="A tool for building DSLs for scientific purposes.",
name="ELLIPTIc",
long_description=readme,
version='1.0.1',
url='https://github.com/padmec-reservoir/ELLIPTIc',
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-cov', 'pytest-mock', 'pytest-faker',
'mypy'],
install_requires=['colorlog', 'configobj', 'anytree', 'typing_extensions', 'jinja2',
'cypyler'],
extras_require={
'docs': [
'sphinx',
'sphinx_autodoc_typehints',
'sphinx_rtd_theme']},
packages=find_packages(),
license="MIT license",
zip_safe=False,
include_package_data=True
)