-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.12 KB
/
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
35
36
37
38
39
import unittest
import os
from setuptools import setup
from distutils.core import Command
HERE = os.path.abspath(os.path.dirname(__file__))
README = os.path.join(HERE, "README.rst")
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Natural Language :: English',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
]
with open(README, 'r') as f:
long_description = f.read()
setup(
name='poacher',
version='0.1',
description=('Watches github.com for new public repositories'),
long_description=long_description,
url='http://github.com/eriknyquist/GithubPoacher',
author='Erik Nyquist',
author_email='eknyquist@gmail.com',
license='Apache 2.0',
packages=['poacher'],
scripts=['bin/poacher-monitor'],
classifiers = classifiers,
include_package_data=True,
zip_safe=False
)