-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (28 loc) · 1006 Bytes
/
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
#!/usr/bin/env python
from __future__ import with_statement
import os
from setuptools import setup, find_packages
def read_file(name):
dir_name = os.path.dirname(os.path.abspath(__file__))
file_name = os.path.join(dir_name, name)
with open(file_name) as f_obj:
return f_obj.read()
setup(
name = 'speedometer',
version = '0.01',
description = 'Python speedometer lib',
author = 'Karataev Pavel',
author_email = 'minmax777@gmail.com',
url = 'https://github.com/minmax/python-speedometer',
license = read_file('UNLICENSE'),
packages = find_packages(exclude=['tests', 'tests.*']),
package_data = {'speedometer': ["README", "UNLICENSE"]},
classifiers = [
'Programming Language :: Python',
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
]
)