-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 963 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
import os
import setuptools
from distutils.core import setup
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, 'updateinfo', 'about.py'), 'r') as f:
exec(f.read(), about)
setup(
name='Updateinfo',
version=about['__version__'],
description=about['__description__'],
author=about['__author__'],
author_email=about['__author_email__'],
license=about['__license__'],
url=about['__url__'],
long_description=open('README.txt').read(),
packages=['updateinfo', 'updateinfo.tests', 'updateinfo.collection', 'updateinfo.collection.store', 'updateinfo.helpers', 'updateinfo.package', 'updateinfo.package.store', 'updateinfo.reference', 'updateinfo.reference.store', 'updateinfo.update', 'updateinfo.updateinfo'],
test_suite='updateinfo.tests',
requires=[
'PyYAML',
'json',
'wheel',
],
classifiers=[
'Programming Language :: Python',
],
)