-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 959 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
# coding: utf-8
from setuptools import setup
with open("README.md", "r", encoding='utf8') as fh:
long_description = fh.read()
package_dir = {
'citation_rabbot': 'citation_rabbot',
'citation_rabbot.jumps': 'citation_rabbot/jumps'
}
setup(
name='citation-rabbot',
version='3.19.7',
author='yindaheng98',
author_email='[email protected]',
url='https://github.com/yindaheng98/citation-rabbot',
description=u'A telegram bot jumping in your citation database like a rabbit!',
long_description=long_description,
long_description_content_type="text/markdown",
package_dir=package_dir,
packages=[key for key in package_dir],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'python-telegram-bot>=20.7',
'neo4j>=5.15.0'
],
)