-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·46 lines (37 loc) · 1.35 KB
/
setup.py
File metadata and controls
executable file
·46 lines (37 loc) · 1.35 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 -*-
from setuptools import setup, find_packages
with open('app/python/docs/index.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='my-python-boilerplate',
version='0.1.0',
description='Boilerplate repository for python projects.',
long_description=readme,
author='Logan Martel',
author_email='logan.martel@outlook.com',
url='https://github.com/martelogan/my-python-boilerplate',
license=license,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
# Specify the Python versions you support here.
'Programming Language :: Python :: 2.7',
],
# What does your project relate to?
keywords= (
'Python'
),
package_dir={'':'app/python'},
packages=find_packages('app/python', exclude=('tests', 'docs'))
)