-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (45 loc) · 1.51 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
42
43
44
45
46
47
48
49
50
51
52
53
try:
# for pip >= 10
from pip._internal.req import parse_requirements
except ImportError:
# for pip <= 9.0.3
from pip.req import parse_requirements
from operator import attrgetter
from os import path
from setuptools import setup, find_packages
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
def from_here(relative_path):
return path.join(path.dirname(__file__), relative_path)
# python -m twine upload dist/*
# env\Scripts\activate
# python setup.py sdist bdist_wheel
# python -m twine upload --skip-existing dist/*
# env\Scripts\activate && python setup.py sdist bdist_wheel && python -m twine upload --skip-existing dist/*
# python setup.py sdist bdist_wheel && python -m twine upload --skip-existing dist/*
setup(
name="creed",
version="0.2.3",
install_requires=[
"pypiwin32==223",
"win10toast==0.9"
],
author="Yusuf Ahmed",
author_email="yusufahmed172@gmail.com",
description="the one and only cross-platform Toaster/Notification in python",
long_description=read('README.md'),
long_description_content_type="text/markdown",
url="https://github.com/yusuf8ahmed/Creed",
packages=find_packages(),
package_data={
'': ['*.txt'],
'creed': ['*.ico'],
},
classifiers=[
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)