Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
event-tracking
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
event-tracking
Commits
e4a318ea
Commit
e4a318ea
authored
Oct 04, 2013
by
Gabe Mulley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ensure all packages are added to the egg
parent
b22a3929
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletions
+4
-1
.gitignore
+2
-0
setup.py
+2
-1
No files found.
.gitignore
View file @
e4a318ea
...
@@ -19,3 +19,5 @@ pylint.report
...
@@ -19,3 +19,5 @@ pylint.report
diff_cover.html
diff_cover.html
diff_quality_pep8.html
diff_quality_pep8.html
diff_quality_pylint.html
diff_quality_pylint.html
dist
setup.py
View file @
e4a318ea
import
os
import
os
from
setuptools
import
setup
from
setuptools
import
setup
from
setuptools
import
find_packages
README
=
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'README.rst'
))
.
read
()
README
=
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'README.rst'
))
.
read
()
REQUIREMENTS
=
[
line
.
strip
()
for
line
in
REQUIREMENTS
=
[
line
.
strip
()
for
line
in
...
@@ -11,7 +12,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
...
@@ -11,7 +12,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup
(
setup
(
name
=
'event-tracking'
,
name
=
'event-tracking'
,
version
=
'0.1'
,
version
=
'0.1'
,
packages
=
[
'eventtracking'
]
,
packages
=
find_packages
()
,
include_package_data
=
True
,
include_package_data
=
True
,
license
=
'AGPLv3 License'
,
license
=
'AGPLv3 License'
,
description
=
'A simple event tracking system.'
,
description
=
'A simple event tracking system.'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment