forked from c2corg/CampBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (33 loc) · 1.11 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
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
setup(
name='campbot',
version="1.2.3",
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 :: 2.7',
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Communications",
],
entry_points={
'console_scripts': [
'campbot = campbot.__main__:main_entry_point',
],
},
license="WTFPL",
)