-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
65 lines (56 loc) · 1.9 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import io
import os
import re
import setuptools
def _read(*paths, **kwargs):
# Credits: https://packaging.python.org/single_source_version.
here = os.path.dirname(__file__)
encoding = kwargs.get('encoding', 'utf8')
with io.open(os.path.join(here, *paths), encoding=encoding) as f:
return f.read()
def _get_metas(*file_paths):
data = _read(*file_paths)
out = {}
metas = ('author', 'contact', 'license', 'summary', 'title', 'url',
'version')
for meta in metas:
pattern = r'^__%s__ = u?[\'"]([^\'"]*)[\'"]' % (meta,)
match = re.search(pattern, data, re.MULTILINE)
if match is None:
raise RuntimeError("Unable to find the metadata '%s'." % (meta,))
out[meta] = match.group(1)
return out
_METAS = _get_metas('hienoi', '__init__.py')
setuptools.setup(
name=_METAS['title'],
version=_METAS['version'],
description=_METAS['summary'],
url=_METAS['url'],
author=_METAS['author'],
author_email=_METAS['contact'],
license=_METAS['license'],
keywords='2D particles OpenGL nani NumPy',
long_description=_read('README.rst'),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
install_requires=['nani', 'numpy', 'PyOpenGL', 'PySDL2'],
extras_require={
'dev': ['coverage', 'tox'],
},
packages=[
'hienoi',
],
include_package_data=True
)