-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (56 loc) · 1.84 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
#!/usr/bin/env python
# coding=utf-8
#
# Python Script
#
# Copyright © Manoel Vilela
#
#
from setuptools import setup, find_packages
from codecs import open # To use a consistent encoding
from os import path
import project
here = path.abspath(path.dirname(__file__))
readme = path.join(here, 'README.md')
with open(readme, encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt') as f:
install_requires = list(map(str.strip, f.readlines()))
setup(
name=project.__name__,
version=project.__version__,
description="A software for managing the business of car rentals using PyQt5",
long_description=long_description,
classifiers=[
"Environment :: Console",
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='project animation decorators decorator',
author=project.__author__,
author_email=project.__email__,
url=project.__url__,
download_url="{u}/archive/v{v}.tar.gz".format(u=project.__url__,
v=project.__version__),
zip_safe=False,
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples',
'tests', 'docs', '__pycache__']),
platforms='unix',
install_requires=install_requires,
extras_require={
"Requires-Dist": ["pypandoc"]
},
entry_points={ # no entry-points yet
# 'console_scripts': [
# 'project = project.cli:main'
# ]
},
)