forked from rafaeelaudibert/Encryptor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 682 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import io
import os
from setuptools import find_packages
from setuptools import setup
with io.open("README.md", "rt", encoding="utf8") as f:
readme = f.read()
setup(
name="encryptor",
version=os.environ['PACKAGE_VERSION'],
url="https://rafaeelaudibert/encryptor.py",
maintainer="Rafa Audibert",
maintainer_email="rafaeelaudibert@gmail.com",
description="Little toy project to showcase Flask, Sentry and TravisCI for INF01127 - Software Engineering course at UFRGS",
long_description=readme,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=["flask"],
extras_require={"test": ["pytest"]},
)