-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (35 loc) · 1.2 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
42
43
44
45
from setuptools import setup, find_packages
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
exec(open("campbot/version.py").read())
setup(
name="campbot",
version=__version__,
packages=find_packages(),
author="Charles de Beauchesne",
author_email="[email protected]",
description="Package for automatic edition of camptocamp.org",
long_description=open('README.txt').read(),
install_requires=install_requires,
include_package_data=True,
url="http://github.com/c2corg/CampBot",
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"License :: OSI Approved",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Communications",
],
entry_points={
'console_scripts': [
'campbot = campbot.__main__:main_entry_point',
],
},
license="WTFPL",
)