-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 859 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
from setuptools import setup, find_packages
import stryke
setup(
name='stryke',
version=stryke.__version__,
packages=find_packages(),
author='Erwan BERNARD',
author_email='[email protected]',
description="Library to write Orc file",
package_data={'stryke': ['stryke.so']},
include_package_data=True,
url='https://github.com/edmBernard/Stryke',
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"License :: OSI Approved",
"Natural Language :: French",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
zip_safe=False,
license="Apache-2.0"
)