-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (33 loc) · 891 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
29
30
31
32
33
34
35
36
37
38
39
40
import codecs
import os
import re
from setuptools import setup, find_packages
VERSION = "0.0.1"
"""
git tag {VERSION}
git push --tags
python setup.py sdist
python setup.py bdist_wheel --universal
twine upload dist/*
"""
def read(*parts):
with codecs.open(os.path.join(HERE, *parts), "r") as fp:
return fp.read()
HERE = os.path.abspath(os.path.dirname(__file__))
setup(
name="ford-prefect",
version=VERSION,
author="Jordan Matelsky",
author_email="opensource@matelsky.com",
description="MyFord API",
license="Apache 2.0",
keywords="ford car api myford",
url="https://github.com/PyMyFord/prefect/tarball/" + VERSION,
packages=find_packages(),
install_requires=["requests"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
],
)