-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (45 loc) · 1.58 KB
/
setup.py
File metadata and controls
53 lines (45 loc) · 1.58 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
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
from cygenja.helpers.version import find_version
from setuptools import setup
from codecs import open
from os import path
version = find_version(path.realpath(__file__), 'cygenja', '__init__.py')
packages_list = ['cygenja',
'cygenja.filters',
'cygenja.helpers',
'cygenja.treemap',
'tests']
CLASSIFIERS = """\
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved
Programming Language :: Python
Topic :: Software Development
Topic :: Scientific/Engineering
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS :: MacOS X
Natural Language :: English
"""
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(name='cygenja',
version=version,
description='Cython code generator with Jinja2',
long_description=long_description,
# Author details
author='Nikolaj van Omme, Sylvain Arreckx, Dominique Orban',
author_email='nikolaj@funartech.com',
maintainer="Nikolaj van Omme",
maintainer_email="nikolaj@funartech.com",
url="https://github.com/PythonOptimizers/cygenja",
download_url="https://github.com/PythonOptimizers/cygenja",
license='LGPL',
classifiers=filter(None, CLASSIFIERS.split('\n')),
install_requires=['jinja2'],
package_dir={"cygenja": "cygenja"},
packages=packages_list,
)