This repository was archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (40 loc) · 1.31 KB
/
setup.py
File metadata and controls
49 lines (40 loc) · 1.31 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
from parsemypsa import _version
def _read(fn):
path = os.path.join(os.path.dirname(__file__), fn)
return open(path).read()
config = {
'name': 'parsemypsa',
'description': 'ParseMyPSA parses files exported from LinkMyPeugeot app',
'long_description': _read('README.rst'),
'author': 'Andrea Decorte',
'url': 'https://github.com/klenje/parsemypsa',
'download_url': 'https://github.com/klenje/parsemypsa',
# 'author_email': 'My email.',
'version': _version.__version__,
'license': 'MIT',
'platforms': 'ALL',
'install_requires': ['peewee>=2.8.1', 'prompt-toolkit>=1.0'],
'setup_requires': ['pytest-runner'],
'test_requires': ['pytest>=2.9.1'],
'packages': ['parsemypsa', 'parsemypsa.parsing_input', 'parsemypsa.storage', 'parsemypsa.output'],
'classifiers': [
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Operating System:: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
'scripts': [],
'entry_points': {
'console_scripts': [
'parsemypsa=parsemypsa.main:main',
],
},
}
setup(**config)