-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (26 loc) · 820 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name = "talepy",
packages = [".", "talepy"],
package_data={
# root markdown files should be packaged
'.': ['*.md'],
# We have type information
'talepy': ['py.typed']
},
version = "0.9.0",
description = "Distributed Transactions Helper",
author = "Steve Brazier",
author_email = "meadsteve@gmail.com",
url = "https://github.com/meadsteve/talepy",
keywords = ["saga", "distributed transaction"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
],
long_description = long_description,
long_description_content_type='text/markdown'
)