-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 709 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (24 loc) · 709 Bytes
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
#!/usr/bin/env python3
#
import os
from setuptools import setup
def read(fname):
"""Read a file and return the content"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="zyzzbot",
version="0.0.1",
author="Seburath",
author_email="t.me/seburath",
description=("Zyzz bot"),
license="MIT",
keywords="zyzzbot bodyfat calculator ffmi calculator",
url="http://github.com/seburath/body-fat-calculator-bot",
packages=["zyzzbot"], # , "tests"],
long_description=read("README.md"),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Management",
"License :: OSI Approved :: MIT License",
],
)