Skip to content

Commit ead9f86

Browse files
committed
initial project structure
1 parent 0382f60 commit ead9f86

File tree

6 files changed

+63
-0
lines changed

6 files changed

+63
-0
lines changed

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
__pycache__/
2+
.idea/
3+
*.pyc
4+
venv/
5+
#Distribution / packaging
6+
.Python
7+
env/
8+
build/
9+
develop-eggs/
10+
dist/
11+
downloads/
12+
eggs/
13+
.eggs/
14+
lib/
15+
lib64/
16+
parts/
17+
sdist/
18+
var/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MANIFEST.in

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include LICENSE
2+
3+
include README.md
4+
5+
include requirements.txt

hacky/__init__.py

Whitespace-only changes.

requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
urllib3==1.22
2+

setup.py

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(name='hacky',
4+
5+
version='0.1',
6+
7+
url='https://github.com/pytorn/hacky',
8+
9+
license='Apache 2.0',
10+
11+
author='Ashwini Purohit',
12+
13+
author_email='[email protected]',
14+
15+
description='A unicorn for Hackathons',
16+
17+
packages=find_packages(exclude=['tests']),
18+
19+
long_description=open('README.md').read(),
20+
21+
zip_safe=False,
22+
23+
classifiers=[
24+
'Intended Audience :: Developers',
25+
'Topic :: Software Development :: Libraries',
26+
'Programming Language :: Python :: 2.7',
27+
],
28+
29+
setup_requires=[])

0 commit comments

Comments
 (0)