-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (36 loc) · 1.32 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
40
41
from setuptools import setup, find_packages
from io import open
from os import path
here = path.abspath(path.dirname(__file__))
# long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='netty_finder',
version='1.0.0',
description=(
'This is a python verison of the original netty-finder that was written in JavaScript,'
),
long_description=long_description,
license='MIT',
url='https://github.com/CITGuru/netty-finder-python/',
classifiers=[
'Development Status :: 1 - Planning',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: User Interfaces',
'Topic :: Software Development :: '
'Libraries :: Application Frameworks',
],
keywords='',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
author='Oyetoke Toby',
download_url='https://github.com/CITGuru/netty-finder-python/archive/1.0.0.tar.gz',
author_email='[email protected]',
)