-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (27 loc) · 925 Bytes
/
setup.py
File metadata and controls
39 lines (27 loc) · 925 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
30
31
32
33
34
35
36
37
38
39
# from setuptools import setup
# setup(
# name='getstats', # This is the name of your PyPI-package.
# version='0.1', # Update the version number for new releases
# scripts=['GetStats.py'] # The name of your scipt, and also the command you'll be using for calling it
# )
from distutils.core import setup
setup(
# Application name:
name="getstats",
# Version number (initial):
version="1.0.0",
# Application author details:
author="Jeevan Chaitanya",
author_email="jeevan449@hotmail.com",
# Packages
packages=["getstats"],
# Include additional files into the package
include_package_data=True,
# license="LICENSE.txt",
description="Useful towel-related stuff.",
# long_description=open("README.txt").read(),
# Dependent packages (distributions)
# install_requires=[
# "",
# ],
)