-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (28 loc) · 847 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/python3.5
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
version = '0.1'
setup(
name='milanbot',
version=version,
install_requires=requirements,
author='Milan Jelisavcic',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
url='https://github.com/milanjelisavcic/milanbot',
license='Unlicense',
description='A bot-kit for fixing data on Wikidata and Wikipedia.',
long_description=long_description,
entry_points={
'console_scripts': [
'milanbot = milanbot:cli',
]
},
)