-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (32 loc) · 863 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
31
32
33
34
from setuptools import find_packages, setup
from Cython.Build import cythonize
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pykeos',
version='0.0.3',
author='Johan Medrano',
python_requires='>=3.4',
ext_modules=cythonize('pykeos/tools/_impl/impl.pyx'),
author_email='',
description='',
long_description=long_description,
platforms='Linux',
packages=find_packages(),
#package_dir={
# '': 'pykeos'
#},
include_package_data=True,
install_requires=(
'nolds',
"plotly",
'plotly_express'
),
classifiers=[
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)