forked from MaxBo/REPAiR-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (38 loc) · 1.38 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
version_dict = dict()
exec(open(os.path.join(os.path.dirname(__file__),
'_version.py')).read(),
version_dict)
setup(
name="repairweb",
version=version_dict['__version__'],
description="GDSE Dummy",
#url='https://maxbo.github.io/cythonarrays/',
author='Christoph Franke',
author_email='[email protected]',
classifiers=[
# How mature is this project? Common values are
#'Development Status :: 5 - Production/Stable',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python',
#'Programming Language :: Cython',
],
#keywords='cython setuptools',
packages=find_packages('.', exclude=['ez_setup']),
package_dir={'': '.'},
#package_data={'': ['*.pxd']},
include_package_data=True,
zip_safe=False,
data_files=[],
install_requires=[
#'setuptools',
],
)