-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.3 KB
/
setup.py
File metadata and controls
48 lines (44 loc) · 1.3 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
""" package installer """
from setuptools import setup
long_description = (
open('README.rst').read()
+ '\n' +
'License\n'
'*******\n'
+ '\n' +
open('LICENSE').read()
+ '\n' +
'Contributors\n'
'************\n'
+ '\n' +
open('docs/CONTRIBUTORS.rst').read()
+ '\n')
setup(
name="pyve",
version="0.1",
description="Documentation from Python Venezuela Community",
long_description=long_description,
# Get more https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: Python 3",
"Operating System :: OS Independent",
],
keywords="python venezuela pyve community package example",
author="Leonardo J. Caballero G.",
author_email="leonardocaballero@gmail.com",
url="https://twitter/macagua",
download_url="https://github.com/macagua/pyve",
license="GPLv3",
platforms="Unix",
packages=[""],
include_package_data=True,
install_requires=[
'setuptools',
],
)