-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (41 loc) · 1.06 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (41 loc) · 1.06 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
from setuptools import find_packages
version = '0.1.dev0'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name='pyoil',
version=version,
description="pyoil package",
long_description=read('README.rst'),
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: MIT License',
],
keywords='',
author='Gael Pasgrimaud',
author_email='gael@gawel.org',
url='https://github.com/gawel/pyoil/',
license='MIT',
packages=find_packages(exclude=['docs', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'tinydb',
'bottle',
],
extras_require={
'test': [
'pytest', 'webtest',
],
},
entry_points="""
[console_scripts]
pyoil = pyoil:main
""",
)