-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.21 KB
/
setup.py
File metadata and controls
45 lines (42 loc) · 1.21 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
# -*- coding: utf-8 -*-
"""
setup.py script
"""
import io
from collections import OrderedDict
from setuptools import setup, find_packages
with io.open('README.md', 'rt', encoding='utf8') as f:
README = f.read()
setup(
name='SampleModule',
version='1.0.0',
url='http://github.com/giovannicuriel/python-project',
project_urls=OrderedDict((
('Code', 'https://github.com/giovannicuriel/python-project.git'),
('Issue tracker', 'https://github.com/giovannicuriel/python-project/issues'),
)),
license='BSD-3-Clause',
author='Giovanni Curiel dos Santos',
author_email='giovannicuriel@gmail.com',
maintainer='dojot team',
description='Sample project structure for Python modules',
long_description=README,
packages=["sample_package"],
include_package_data=True,
zip_safe=False,
platforms=[any],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=[
'super_package==1.0.0'
],
extras_require={
"dev": [
"pytest==4.0.0",
"pytest-cov==2.6.0"
]
}
)